home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / COMMON.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-23  |  1.0 KB  |  25 lines

  1. #define INCL_WIN
  2. #define INCL_GPILCIDS           /* Font functions               */
  3. #define INCL_GPIPRIMITIVES      /* GPI primitive functions      */
  4.  
  5. #include <os2.h>
  6.  
  7. #include <iapp.hpp>                       //Application Class
  8. #include <istattxt.hpp>                   //StaticText Class
  9. #include <istring.hpp>                    //String Class
  10. #include <ifont.hpp>                      //Font Class
  11. #include <iscroll.hpp>                    //Scrollbar Class
  12. #include <Ilistbox.hpp>                   //Listbox Class
  13. #include <imsgbox.hpp>                    //MessageBox Class
  14.  
  15. #define WORDLENGTH 17    //Max. word length for word in process
  16. #define FALSE 0
  17. #define TRUE  1
  18. #define MAX   150
  19.  
  20. //#define BEEPFREQ       700L       /* Beep frequency, in hertz          */
  21. //#define BEEPDURATION   200L       /* Duration of beep, in milliseconds */
  22. #define BEEPFREQ       100L       /* Beep frequency, in hertz          */
  23. #define BEEPDURATION   50L        /* Duration of beep, in milliseconds */
  24.  
  25.